Skip to content

Applies to

netstandard2.0

public IDisposable Subscribe(IObserver<object> observer)

Summary: Subscribes an observer to the ListObservable which will be notified upon completion.

Parameters

NameTypeDescription
observerIObserverThe observer to send completion or error messages to.

Returns: IDisposable -- The disposable resource that can be used to unsubscribe.

Exceptions

TypeCondition
System.ArgumentNullExceptionobserver is null.